home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 315_01 / hpgl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-14  |  398 b   |  14 lines

  1.  
  2. #ifndef HPGL_H
  3. #define HPGL_H
  4.  
  5. #define STRING_TERM_CHAR '\003'    /* default char for string termination */
  6.                    /* on hp plotter */
  7. #define INIT_STRING "\033.(;IN;PU;PU;SP1;LT;PU;PU;"   /* initialization string */
  8.                         /* for hp plotter */
  9.  
  10. void hpgl_init(), hpgl_startline(), hpgl_line(), hpgl_endline();
  11. void hpgl_label(), hpgl_moveto(), hpgl_selectpen(), hpgl_write();
  12.  
  13. #endif
  14.